# Logfile created on Mon Sep 21 17:04:54 -0400 2009 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.2ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Exists (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 520095529) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 520095530) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 520095530) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:04:57) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567097_766134' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:04:57) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567097_957532' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:04:58) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567098_56898' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:04:58) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567098_213387' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:04:58) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567098_309904' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:04:58) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567098_463663' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.5ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.3ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:04:59', NULL, '2009-09-21 17:04:59') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Exists (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2009-09-21 17:04:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 8ms (View: 5, DB: 70) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2009-09-21 17:04:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2009-09-21 17:04:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-09-21 17:04:59) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 7ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-09-21 17:04:59) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-09-21 17:04:59) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-09-21 17:04:59) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-09-21 17:04:59) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 36ms (View: 34, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-09-21 17:04:59) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 91ms (View: 89, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1253567100_814787' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that renders with a layout should accept rendering with any layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:00) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1253567100_992531' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that renders with a layout should accept rendering with that layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:01) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1253567101_91036' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that renders with a layout should reject rendering with another layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:01) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `__bind_1253567101_260247' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that renders without a layout should reject rendering with a layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:01) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:01) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:01) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:01) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:01) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1253567101_895928' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (23.9ms) Rendered rescues/_request_and_response (1.6ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:02) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:02) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:02) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:02) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:02) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:02) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:02) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:02) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:03) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:03) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:03) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:03) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:03) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:03) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:03) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:04) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567104_892257' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567105_66401' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567105_167621' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567105_337953' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567105_438156' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:05:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567105_609247' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.3ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.5ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Exists (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Exists (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Exists (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 520095529) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 520095530) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 520095530) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:44) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567444_78468' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:44) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567444_248754' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:44) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567444_344752' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:44) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567444_499204' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:44) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567444_595342' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:44) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1253567444_746778' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.3ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.4ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.7ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.2ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.4ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.2ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (1.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.3ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (1.5ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.3ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.5ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.3ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-09-21 17:10:45', NULL, '2009-09-21 17:10:45') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Exists (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 93) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-09-21 17:10:46) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-09-21 17:10:46) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-09-21 17:10:46) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-09-21 17:10:46) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 11ms (View: 9, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 91ms (View: 90, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-09-21 17:10:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:47) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1253567447_26022' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that renders with a layout should accept rendering with any layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:47) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1253567447_208970' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that renders with a layout should accept rendering with that layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:47) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1253567447_310595' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that renders with a layout should reject rendering with another layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:47) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `__bind_1253567447_480856' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that renders without a layout should reject rendering with a layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:48) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1253567448_220386' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (25.7ms) Rendered rescues/_request_and_response (2.3ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:48) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:48) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:48) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:49) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:49) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:49) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:49) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:49) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:49) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:49) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:50) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:50) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:50) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:50) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:51) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567451_620579' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:51) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567451_802183' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:51) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567451_911963' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:52) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567452_105064' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:52) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567452_214298' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-09-21 17:10:52) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1253567452_404778' config/initializers/./../../../lib/shoulda/context.rb:375:in `call' config/initializers/./../../../lib/shoulda/context.rb:375:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:374:in `each' config/initializers/./../../../lib/shoulda/context.rb:374:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) User Exists (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.3ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Exists (0.6ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.5ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Exists (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.4ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.5ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Exists (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.3ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.4ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.3ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.3ms) SELECT * FROM "addresses" LIMIT 1 Address Exists (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 520095529) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 520095530) LIMIT 1 Address Exists (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 520095530) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.4ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:34) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1258388074_657636' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:34) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1258388074_918041' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:35) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1258388075_23192' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:35) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1258388075_191613' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:35) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1258388075_296495' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:35) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1258388075_468361' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.3ms) DROP TABLE IF EXISTS parents SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.3ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (4.4ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.3ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.4ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS conceptions SQL (0.4ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.6ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.2ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.4ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.2ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2009-11-16 11:14:36', NULL, '2009-11-16 11:14:36') Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Exists (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Exists (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Exists (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (1.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2009-11-16 11:14:36) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 80) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2009-11-16 11:14:36) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2009-11-16 11:14:36) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-11-16 11:14:36) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-11-16 11:14:36) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-11-16 11:14:36) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2009-11-16 11:14:36) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Exists (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-11-16 11:14:36) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 89ms (View: 86, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2009-11-16 11:14:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:38) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1258388077_997590' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that renders with a layout should accept rendering with any layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:38) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1258388078_103524' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that renders with a layout should accept rendering with that layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:38) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1258388078_282020' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that renders with a layout should reject rendering with another layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:38) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `__bind_1258388078_387237' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that renders without a layout should reject rendering with a layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:38) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:38) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:38) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:38) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:39) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1258388079_136518' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (39.4ms) Rendered rescues/_request_and_response (1.6ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:39) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:39) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:39) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:39) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:39) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:40) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:40) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:40) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:40) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:40) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:40) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:40) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:40) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:41) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:41) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:42) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1258388082_515480' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:42) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1258388082_698604' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:42) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1258388082_805310' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:42) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1258388082_987668' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:43) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1258388083_102558' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2009-11-16 11:14:43) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1258388083_278285' config/initializers/./../../../lib/shoulda/context.rb:369:in `call' config/initializers/./../../../lib/shoulda/context.rb:369:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:368:in `each' config/initializers/./../../../lib/shoulda/context.rb:368:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:350:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.9ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.3ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Exists (0.4ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Exists (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.9ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.3ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.6ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.4ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (1.1ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.6ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.6ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.6ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (1.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Exists (0.6ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.4ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.6ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Exists (0.4ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Exists (0.6ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.4ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Exists (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Exists (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) select sqlite_version(*) SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.4ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.4ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') User Load (0.3ms) SELECT * FROM "users" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (5.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (1.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 10:17:18) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 33ms (View: 27, DB: 14) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 10:17:18) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 23ms (View: 22, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 10:17:18) [GET] Parameters: {"user_id"=>#} User Load (15.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 37ms (View: 2, DB: 17) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 10:17:19) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 7ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 10:17:19) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 7ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 10:17:19) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 10ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 10:17:19) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 6ms (DB: 35) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 70ms (View: 67, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 106ms (View: 104, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 8, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (1.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 11, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (6.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 30ms (View: 16, DB: 8) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 30ms (View: 28, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:20) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:20) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:20) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:20) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (2.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:20) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 7) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:20) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:20) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:20) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 10:17:20) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.5ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.3ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.4ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.4ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.7ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.7ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (4.5ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (1.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.3ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.3ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.5ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (2.0ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.4ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (1.0ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (2.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (2.8ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.3ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.3ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.3ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.3ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.4ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (2.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (1.0ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (1.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.6ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.7ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.6ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.3ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (1.5ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.2ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.3ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (8.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (14.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (10.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.3ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.3ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.4ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.2ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (2.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (1.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (2.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (2.7ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.3ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (1.3ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:07) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1265993047_452537' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:07) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1265993047_694046' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:07) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1265993047_815040' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:08) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1265993048_53683' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:08) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1265993048_210344' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:08) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1265993048_498641' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (4.7ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (1.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (1.8ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.6ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.3ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.5ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.3ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.2ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.3ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.3ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.8ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.2ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.3ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.7ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.8ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 11:44:10', NULL, '2010-02-12 11:44:10') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 11:44:10) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 16ms (View: 9, DB: 94) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 6ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 11:44:11) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 6ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 11:44:11) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 14ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 11:44:11) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 7ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 11:44:11) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 11ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (4.6ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 21ms (View: 14, DB: 7) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 4, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 26ms (View: 24, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (1.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.5ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 5) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:12) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:12) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:12) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:12) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:12) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 5) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:12) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:12) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 11:44:12) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:12) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1265993052_585717' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that renders with a layout should accept rendering with any layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:13) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1265993053_50027' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that renders with a layout should accept rendering with that layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:13) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1265993053_245926' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that renders with a layout should reject rendering with another layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:13) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `__bind_1265993053_513024' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that renders without a layout should reject rendering with a layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:13) [GET] Completed in 5ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:13) [GET] Completed in 5ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:14) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:14) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:14) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1265993054_598087' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (38.6ms) Rendered rescues/_request_and_response (20.5ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:15) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:15) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:15) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:15) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:15) [GET] Completed in 6ms (View: 4, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:15) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:16) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:16) [GET] Completed in 5ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:16) [GET] Completed in 5ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:17) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:17) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:17) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:17) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:18) [GET] Completed in 7ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:18) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:20) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1265993060_405779' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:20) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1265993060_543912' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:20) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1265993060_834458' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:20) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1265993060_977584' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:21) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1265993061_224133' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 11:44:21) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1265993061_384017' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.6ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.5ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (3.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.3ms) SELECT * FROM "users" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.8ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (3.0ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.3ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (2.5ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.4ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.6ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.3ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.3ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.3ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.3ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.4ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (2.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (3.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (6.5ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.4ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.3ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.3ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (4.8ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.3ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.3ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.5ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.5ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.4ms) SELECT * FROM "users" LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.3ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.3ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:24:23) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 31ms (View: 24, DB: 9) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:24:23) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:24:23) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 6ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:24:23) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 7ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:24:23) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 10ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:24:23) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 5ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:24:23) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 6ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:24:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (1.0ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 64ms (View: 60, DB: 4) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:24:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:24:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:24:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:24:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:23) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 111ms (View: 109, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (1.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 11, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (2.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 10ms (View: 6, DB: 5) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (1.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 6, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (1.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (1.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.9ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:24:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 Post Load (1.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 13ms (View: 8, DB: 6) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:27:29) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:27:29) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:27:29) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:27:29) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 83ms (View: 81, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (1.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (2.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 11ms (View: 6, DB: 6) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 8, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:27:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:28:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 14ms (View: 9, DB: 7) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.5ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:28:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:28:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:28:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 6ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:28:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:28:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 7ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:28:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:28:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 19ms (View: 14, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:28:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:28:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 90ms (View: 89, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (1.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 10ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (1.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:28:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.4ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.5ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (11.9ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:31:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 16ms (View: 9, DB: 20) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:31:43) [GET] Parameters: {"user_id"=>#} User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:31:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:31:43) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 6ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:31:43) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 14ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:31:43) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 6ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:31:43) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 8ms (DB: 4) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:31:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 14, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:31:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:31:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:31:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 53ms (View: 51, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:31:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (9.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 3, DB: 12) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.9ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 150ms (View: 147, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (1.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 6, DB: 5) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 11ms (View: 9, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.6ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 5) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 10ms (View: 6, DB: 6) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (1.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 30ms (View: 26, DB: 23) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 28ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (3.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 37ms (View: 8, DB: 5) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 16) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 5) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:31:44) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 43ms (View: 13, DB: 8) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 5ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:32:30) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 8ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:32:30) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 10ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:32:30) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 8ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:32:30) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 5ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 25ms (View: 22, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.8ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 3, DB: 6) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (3.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 125ms (View: 120, DB: 6) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 11) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 5) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:32:30) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 33ms (View: 7, DB: 6) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 20ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.5ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 5) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 24ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:32:31) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.4ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 28ms (View: 20, DB: 9) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 5ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:34:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 6ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:34:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 7ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.7ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:34:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 6ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:34:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.9ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 6ms (DB: 4) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 4) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 33ms (View: 30, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (9.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 22ms (View: 10, DB: 12) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 15, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 7, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (2.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (2.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 5) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.8ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.9ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:34:32) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.4ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.5ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.6ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.5ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.4ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.4ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 30ms (View: 16, DB: 10) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 5ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:36:14) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 7ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:36:14) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 7ms (DB: 12) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:36:14) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 6ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (6.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:36:14) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 9ms (DB: 9) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 36ms (View: 33, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 30ms (View: 22, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (1.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 24ms (View: 7, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:36:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:36:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:36:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:36:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 12) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:36:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:36:15) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:36:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:36:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:36:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:36:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.6ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (1.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:37:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 17ms (View: 8, DB: 10) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:37:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:37:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:37:03) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 6ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:37:03) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (1.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 16ms (DB: 4) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:37:03) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 9ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:37:04) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 11ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 26ms (View: 24, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 129ms (View: 127, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (6.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 29ms (View: 21, DB: 8) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (10.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 18ms (View: 6, DB: 13) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 30ms (View: 27, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (1.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:04) [GET] Parameters: {"user_id"=>#} User Load (4.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 24ms (View: 19, DB: 8) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.3ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:37:35) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 25ms (View: 12, DB: 9) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:37:35) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:37:35) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (1.0ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:37:35) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 11ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:37:35) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 7ms (DB: 4) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:37:35) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 7ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.5ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:37:35) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 8ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (1.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:37:35) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 20ms (View: 17, DB: 4) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:37:35) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:37:35) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:37:35) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:37:35) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:35) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 35ms (View: 33, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 10ms (View: 8, DB: 5) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 5, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:37:36) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 16ms (View: 11, DB: 7) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 14:39:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 21ms (View: 20, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.6ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:39:31) [GET] Parameters: {"user_id"=>#} User Load (1.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:39:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:39:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:39:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:39:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 14:39:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.3ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.7ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.4ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (1.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.4ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.4ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.5ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.3ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.4ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.6ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.6ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.3ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.3ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (1.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (1.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.8ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (1.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 14:57:00) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004620_148101' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 14:57:00) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004620_340216' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 14:57:00) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004620_388829' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 14:57:00) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004620_451915' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to the same value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 14:57:00) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004620_504441' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 14:57:00) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004620_557724' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 14:57:00) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004620_678375' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 14:57:00) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004620_723048' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to the another value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:02:32) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004952_89322' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:02:32) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004952_196153' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:02:32) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004952_234545' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:02:32) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004952_271882' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to the same value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:02:32) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004952_309368' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:02:32) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004952_349416' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:02:32) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004952_439998' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:02:32) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004952_477037' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to the another value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.3ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:03:14) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004994_499263' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:03:14) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004994_605808' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:03:14) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004994_642912' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:03:14) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004994_680330' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to the same value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:03:14) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004994_717790' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:03:14) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004994_759047' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:03:14) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004994_847741' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:03:14) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266004994_884689' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to the another value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/assign_to_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:06:33) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 17ms (View: 9, DB: 9) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:06:33) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:06:33) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 6ms (DB: 4) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:06:33) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.6ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 14, DB: 4) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:06:33) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 11ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:06:33) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:06:33) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:06:33) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:06:33) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 22ms (View: 20, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:06:33) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:06:33) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:06:34) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:06:34) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:06:34) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:06:34) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:06:34) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 5) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:06:34) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:06:34) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:06:34) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:06:34) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:06:34) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (2.0ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 26ms (View: 15, DB: 10) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.6ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/new] Post Load (1.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:07:00) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 6ms (DB: 4) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 13, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 4) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 2, DB: 4) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 21ms (View: 19, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.6ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 6, DB: 5) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (1.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (2.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 1, DB: 5) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:00) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 21ms (View: 13, DB: 9) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (1.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:07:48) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 5ms (DB: 4) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 18ms (View: 16, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (2.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (1.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 3, DB: 6) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 21ms (View: 18, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (5.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 10, DB: 8) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 11ms (View: 9, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (1.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 6, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 7, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 10ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:48) [GET] Parameters: {"user_id"=>#} User Load (0.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:49) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:49) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:49) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:49) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:07:49) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.5ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:08:05) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 22ms (View: 11, DB: 9) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:08:05) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:08:05) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 9ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:08:05) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 22ms (View: 18, DB: 6) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:08:05) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:08:05) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 4) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 4, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.7ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 40ms (View: 37, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.7ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 10ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (1.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (1.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:08:06) [GET] Parameters: {"user_id"=>#} User Load (1.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.6ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.4ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:10:34) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005434_237566' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:10:34) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005434_366879' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:10:34) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005434_411555' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:10:34) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005434_456347' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:10:34) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005434_504818' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning to the same value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:10:34) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005434_625076' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:10:34) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005434_670814' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:10:34) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005434_715710' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning to the another value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:08) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005468_966015' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:09) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005469_70389' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:09) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005469_106721' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:09) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005469_145981' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:09) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005469_184537' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning to the same value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:09) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005469_274408' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:09) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005469_310444' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:09) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005469_347587' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning to the another value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:54) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005514_307393' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:54) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005514_409855' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:54) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005514_445588' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:54) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005514_482352' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:54) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005514_520588' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning to the same value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:54) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005514_614062' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:54) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005514_652017' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:11:54) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266005514_688618' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning to the another value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/set_session_matcher_test.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 16ms (View: 11, DB: 6) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:12:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 74ms (View: 72, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:12:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 14ms (View: 9, DB: 6) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:13:07) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 19ms (View: 18, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:13:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 8) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:13:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.8ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.3ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.4ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:21:54) [GET] Parameters: {"user_id"=>#} User Load (12.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 36ms (View: 17, DB: 20) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (6.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:21:54) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 8) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:21:54) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (1.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 6ms (DB: 7) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (1.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:21:54) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 102ms (View: 85, DB: 5) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:21:54) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 43ms (View: 13, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:21:54) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 10ms (View: 8, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:21:54) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.5ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 53ms (View: 35, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.7ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 5, DB: 10) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 21ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (1.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.9ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 6, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 112ms (View: 110, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (10.9ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 19ms (View: 7, DB: 14) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (3.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (1.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 1, DB: 6) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (4.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (6.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 10ms (View: 2, DB: 13) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.7ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 12, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:21:55) [GET] Parameters: {"user_id"=>#} User Load (0.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (4.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.5ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.4ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:35:05) [GET] Completed in 2ms (View: 1, DB: 6) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:35:05) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:35:05) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] SQL (0.4ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:40:35) [GET] Completed in 35ms (View: 4, DB: 6) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:40:35) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:40:35) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.3ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.2ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.3ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.7ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (1.4ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.4ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:40:46) [GET] Completed in 3ms (View: 1, DB: 8) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:40:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:40:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:42:48) [GET] Completed in 2ms (View: 1, DB: 5) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:42:48) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:42:48) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 33ms (View: 28, DB: 6) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:44:01) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (1.0ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (68.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 74ms (View: 5, DB: 70) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:44:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:45:15) [GET] Completed in 2ms (View: 1, DB: 6) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:45:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:45:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:45:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:45:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:47:11) [GET] Completed in 2ms (View: 1, DB: 4) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:47:11) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:47:11) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:47:11) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 15:47:11) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 16ms (View: 11, DB: 7) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:47:15) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:47:15) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:47:15) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 18ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (2.0ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:16) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:16) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:16) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:16) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:47:36) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 15ms (View: 10, DB: 6) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:47:36) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:47:36) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:47:36) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:47:36) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:36) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:36) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:37) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 16ms (View: 10, DB: 6) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 5ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:47:48) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:47:48) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 15:47:48) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:48) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 15:47:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.4ms) select sqlite_version(*) SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:47:25) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:29:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:29:in `__bind_1266029245_578196' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that doesn't render a template should reject rendering a template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:27 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:47:25) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029245_692140' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should accept rendering that template in a block. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:27 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:47:25) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029245_727388' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should accept rendering that template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:27 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:47:25) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029245_762456' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should reject rendering a different template in a block. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:27 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:47:25) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029245_798255' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should reject rendering a different template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:27 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.4ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:50:36) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:21:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:21:in `__bind_1266029436_251720' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that doesn't render a template should reject rendering a template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:50:36) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029436_351759' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should accept rendering that template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:50:36) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029436_388197' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should reject rendering a different template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:51:43) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:21:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:21:in `__bind_1266029503_224396' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that doesn't render a template should reject rendering a template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:51:43) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029503_323957' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should accept rendering that template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:51:43) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029503_359150' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should reject rendering a different template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:51:58) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:21:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:21:in `__bind_1266029518_506046' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that doesn't render a template should reject rendering a template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:51:58) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029518_605343' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should accept rendering that template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:51:58) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029518_642520' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should reject rendering a different template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:52:19) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:21:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:21:in `__bind_1266029539_666172' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that doesn't render a template should reject rendering a template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:52:19) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029539_766774' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should accept rendering that template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:52:19) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029539_803797' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should reject rendering a different template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:58:04) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:21:in `example' /test/model_builder.rb:82:in `build_response' test/matchers/controller/render_template_matcher_test.rb:21:in `__bind_1266029884_935266' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that doesn't render a template should reject rendering a template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:58:30) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:21:in `example' /test/model_builder.rb:82:in `build_response' test/matchers/controller/render_template_matcher_test.rb:21:in `__bind_1266029910_496088' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that doesn't render a template should reject rendering a template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 21:58:30) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `show' /test/model_builder.rb:82:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029910_597624' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should accept rendering that template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 21:58:30) [GET] ActionView::MissingTemplate (Missing template examples/show.erb in view path app/views): test/matchers/controller/render_template_matcher_test.rb:7:in `show' /test/model_builder.rb:82:in `build_response' test/matchers/controller/render_template_matcher_test.rb:7:in `__bind_1266029910_635206' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders a template should reject rendering a different template. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 test/matchers/controller/render_template_matcher_test.rb:19 Rendering rescues/layout (internal_server_error) SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:59:02) [GET] Rendering examples/show Completed in 65ms (View: 63, DB: 4) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 21:59:03) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 21:59:03) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:59:20) [GET] Rendering examples/show Completed in 8ms (View: 7, DB: 4) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 21:59:20) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 21:59:20) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:59:34) [GET] Rendering examples/show Completed in 9ms (View: 7, DB: 5) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 21:59:34) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 21:59:34) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 21:59:46) [GET] Completed in 4ms (View: 2, DB: 4) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 21:59:46) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 21:59:47) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 12ms (View: 7, DB: 6) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:00:40) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:00:40) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:00:40) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 18ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 69ms (View: 68, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:00:40) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:02:08) [GET] Completed in 4ms (View: 2, DB: 4) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:02:08) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:02:08) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:02:08) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:02:08) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:02:51) [GET] Completed in 4ms (View: 2, DB: 4) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:02:51) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:02:51) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:02:51) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:02:51) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 13ms (View: 8, DB: 6) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:02:56) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:02:56) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:02:56) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 69ms (View: 68, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:56) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:02:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:04:28) [GET] Completed in 4ms (View: 2, DB: 4) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:04:28) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:04:28) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:04:28) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:04:28) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:36) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030756_656666' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:36) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030756_827853' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:36) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030756_986671' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:37) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030757_84672' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to the same value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:37) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030757_240558' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:37) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030757_338876' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:37) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030757_495772' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:37) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030757_593968' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to the another value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.3ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:12:38', NULL, '2010-02-12 22:12:38') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:12:38) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 69) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:12:38) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:12:38) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:12:38) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:12:38) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:12:38) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (1.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:39) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:40) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:40) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:40) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:40) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:40) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266030760_564017' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should accept rendering with any layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:40) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266030760_739261' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should accept rendering with that layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:40) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266030760_861620' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should reject rendering with another layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:41) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `__bind_1266030761_40879' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders without a layout should reject rendering with a layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:41) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:41) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:41) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:41) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:41) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266030761_680063' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.0ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:41) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:41) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:42) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:42) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:42) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:42) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:42) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:42) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:42) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:43) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:43) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:43) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:43) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:43) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:43) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:44) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030764_968536' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:45) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030765_69514' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:45) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030765_246342' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:45) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030765_349110' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:45) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030765_526208' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning to the same value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:45) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030765_626006' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:45) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030765_806168' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:12:45) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030765_908642' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning to the another value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:42) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030822_790657' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:42) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030822_961829' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:43) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030823_58794' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:43) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030823_215554' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should accept assigning to the same value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:43) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030823_311805' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:43) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030823_466483' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:43) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030823_562747' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:43) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266030823_717622' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that assigns to an instance variable should reject assigning to the another value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.6ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.2ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.2ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:13:44', NULL, '2010-02-12 22:13:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:13:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 10ms (View: 7, DB: 65) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:13:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:13:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:13:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:13:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:13:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:13:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:13:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:13:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:46) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:46) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266030826_516361' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should accept rendering with any layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:46) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266030826_613791' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should accept rendering with that layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:46) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266030826_793016' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should reject rendering with another layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:46) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `__bind_1266030826_970052' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders without a layout should reject rendering with a layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:47) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266030827_606110' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.0ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:48) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:49) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:49) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:49) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:49) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:49) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:50) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030830_760786' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:50) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030830_937224' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:51) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030831_34452' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:51) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030831_211663' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:51) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030831_308890' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should accept assigning to the same value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:51) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030831_486276' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:51) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030831_583610' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:13:51) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266030831_761180' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that sets a session variable should reject assigning to the another value in the test context. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:06', NULL, '2010-02-12 22:18:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 80) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:18:07) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:18:07) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:18:07) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:18:07) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:43) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:43) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:44) [GET] Rendering examples/example Completed in 62ms (View: 60, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.2ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.3ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:18:45', NULL, '2010-02-12 22:18:45') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:18:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:18:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:18:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:18:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:18:47) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:18:47) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:18:47) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:18:47) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:47) [GET] ActionView::MissingTemplate (Missing layout layouts/wide.erb in view path /Users/jferris/Source/shoulda/rails_root/tmp/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266031127_690009' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should accept rendering with any layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:47) [GET] ActionView::MissingTemplate (Missing layout layouts/wide.erb in view path /Users/jferris/Source/shoulda/rails_root/tmp/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266031127_871639' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should accept rendering with that layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:47) [GET] ActionView::MissingTemplate (Missing layout layouts/wide.erb in view path /Users/jferris/Source/shoulda/rails_root/tmp/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266031127_972616' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should reject rendering with another layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:48) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266031128_793063' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (102.9ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:49) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:49) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:49) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:49) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:49) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:49) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:49) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:49) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:50) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:50) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:50) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:50) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:50) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:50) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:50) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:18:53) [GET] Rendering examples/example Completed in 83ms (View: 82, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:21) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:21) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:21) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:22) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:22) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:22) [GET] Rendering examples/example Completed in 62ms (View: 60, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:22) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:20:23', NULL, '2010-02-12 22:20:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 65) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:20:23) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:20:23) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:20:23) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:20:23) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:20:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:24) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:25) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:25) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:20:25) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:20:25) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:20:25) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:20:25) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:25) [GET] ActionView::MissingTemplate (Missing layout layouts/wide.erb in view path /Users/jferris/Source/shoulda/rails_root/tmp/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266031225_871567' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should accept rendering with any layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:26) [GET] ActionView::MissingTemplate (Missing layout layouts/wide.erb in view path /Users/jferris/Source/shoulda/rails_root/tmp/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266031226_61335' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should accept rendering with that layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:26) [GET] ActionView::MissingTemplate (Missing layout layouts/wide.erb in view path /Users/jferris/Source/shoulda/rails_root/tmp/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266031226_162131' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller that renders with a layout should reject rendering with another layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:26) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:26) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266031226_981895' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.5ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:27) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:27) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:27) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:27) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:27) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:27) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:28) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:28) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:28) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:28) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:28) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:28) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:28) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:28) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:29) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:31) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:20:31) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.3ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:50) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:50) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:50) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:50) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:50) [GET] Rendering examples/example Completed in 62ms (View: 60, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.3ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:21:51', NULL, '2010-02-12 22:21:51') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 65) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:21:52) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:21:52) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:21:52) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:21:52) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:52) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:53) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:53) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:53) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:53) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:53) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:21:53) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:21:53) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:21:54) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:21:54) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:54) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:54) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:54) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:54) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:54) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:55) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:55) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:55) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:55) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266031315_448966' config/initializers/./../../../lib/shoulda/context.rb:419:in `call' config/initializers/./../../../lib/shoulda/context.rb:419:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:418:in `each' config/initializers/./../../../lib/shoulda/context.rb:418:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (101.9ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:55) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:55) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:55) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:56) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:56) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:56) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:56) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:56) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:56) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:56) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:57) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:57) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:57) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:57) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:57) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:58) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:58) [GET] Rendering examples/example Completed in 83ms (View: 81, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:59) [GET] Rendering examples/example Completed in 85ms (View: 84, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:21:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:01) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:01) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:01) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:01) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:01) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:01) [GET] Rendering examples/example Completed in 62ms (View: 60, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:02) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.4ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.2ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:24:03', NULL, '2010-02-12 22:24:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 65) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:24:03) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:24:03) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:24:03) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:24:03) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 96ms (View: 95, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:24:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:04) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:04) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:24:04) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:24:05) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:24:05) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:24:05) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:05) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:05) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:05) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:06) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:06) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:06) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:06) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:06) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266031446_628521' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (101.3ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:06) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:07) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:07) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:07) [GET] Completed in 81ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:07) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:07) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:07) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:07) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:07) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:08) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:08) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:08) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:09) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:09) [GET] Rendering examples/example Completed in 82ms (View: 81, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:24:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:42) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:43) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:43) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:43) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:43) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.3ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.6ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.2ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:26:44', NULL, '2010-02-12 22:26:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:26:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:26:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:26:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:26:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:26:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:26:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:46) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:26:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:26:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:26:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:26:47) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:47) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:47) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:47) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:47) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:48) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266031608_285029' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (102.4ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:48) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:48) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:48) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:49) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:49) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:49) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:49) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:49) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:49) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:49) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:49) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:50) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:50) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:50) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:51) [GET] Rendering examples/example Completed in 83ms (View: 82, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:51) [GET] Rendering examples/example Completed in 87ms (View: 85, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:26:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope2" integer, "attr" varchar(255), "scope1" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope2" integer, "attr" varchar(255), "scope1" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope2" integer, "attr" varchar(255), "scope1" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope2" integer, "attr" varchar(255), "scope1" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope2" integer, "attr" varchar(255), "scope1" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:21) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:21) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:21) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:21) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:21) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:22) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:22) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:22) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:28:23', NULL, '2010-02-12 22:28:23') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:28:23) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:28:23) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:28:23) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:28:23) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:23) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:24) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:25) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:28:25) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:28:25) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:28:25) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:28:25) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:25) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:25) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:25) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:26) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:26) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:26) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266031706_772743' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (101.7ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:26) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:27) [GET] Completed in 81ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:27) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:27) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:27) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:27) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:27) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:27) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:28) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:28) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:28) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:28) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:28) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:28) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:28) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:30) [GET] Rendering examples/example Completed in 83ms (View: 81, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:30) [GET] Rendering examples/example Completed in 86ms (View: 84, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:28:31) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:24) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:24) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:24) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:24) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:24) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:24) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:24) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:25) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:25', NULL, '2010-02-12 22:30:25') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:25', NULL, '2010-02-12 22:30:25') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:25', NULL, '2010-02-12 22:30:25') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:25', NULL, '2010-02-12 22:30:25') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:26', NULL, '2010-02-12 22:30:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:26', NULL, '2010-02-12 22:30:26') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:26', NULL, '2010-02-12 22:30:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:26', NULL, '2010-02-12 22:30:26') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:26', NULL, '2010-02-12 22:30:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:26', NULL, '2010-02-12 22:30:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:26', NULL, '2010-02-12 22:30:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.3ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:26', NULL, '2010-02-12 22:30:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:26', NULL, '2010-02-12 22:30:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:26', NULL, '2010-02-12 22:30:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:30:26) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:30:26) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:30:26) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:30:26) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:27) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:27) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:30:27) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:30:28) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:30:28) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:30:28) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:28) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:28) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:28) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 21ms (View: 20, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:28) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:29) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:29) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:29) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:29) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:29) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266031829_629268' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (103.2ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:29) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:29) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:30) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:30) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:30) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:30) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:30) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:30) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:30) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:31) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:31) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:31) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:31) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:31) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:31) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:32) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:33) [GET] Rendering examples/example Completed in 83ms (View: 82, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:33) [GET] Rendering examples/example Completed in 86ms (View: 84, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:50) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:51) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:51) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:51) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.3ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.3ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:30:52', NULL, '2010-02-12 22:30:52') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 67) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:30:53) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:30:53) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:30:53) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:30:53) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 77) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:53) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:54) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:54) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:54) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:54) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:54) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:30:54) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:30:54) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:30:55) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:30:55) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:55) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:55) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:55) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:55) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:55) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:56) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:56) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:56) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:56) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266031856_430512' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (100.9ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:56) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:56) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:56) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:57) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:57) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:57) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:57) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:57) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:57) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:57) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:57) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:58) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:58) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:58) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:58) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:30:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:00) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:00) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:00) [GET] Rendering examples/example Completed in 84ms (View: 82, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:00) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:00) [GET] Rendering examples/example Completed in 86ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.3ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.4ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:39) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:39) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:39) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:40) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:40) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:40) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:40) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:40) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.4ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.3ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.5ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:31:41', NULL, '2010-02-12 22:31:41') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:31:41) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:31:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:31:41) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:31:41) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:31:41) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:31:41) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:31:41) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:31:41) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:31:41) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 91ms (View: 90, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:42) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:43) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:43) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:43) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:31:43) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:31:43) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:31:43) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:31:43) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:44) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:44) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:44) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:44) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:44) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:44) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:45) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:45) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266031905_137197' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (101.5ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:45) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:45) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:45) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:45) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:45) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:46) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:46) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:46) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:46) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:46) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:46) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:46) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:46) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:48) [GET] Rendering examples/example Completed in 83ms (View: 81, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:48) [GET] Rendering examples/example Completed in 86ms (View: 84, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:49) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:49) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:49) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:31:49) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.5ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266032405_234249' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266032405_405007' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266032405_501368' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266032405_658283' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266032405_754651' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:05) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1266032405_909693' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.5ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:40:06', NULL, '2010-02-12 22:40:06') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 10ms (View: 7, DB: 131) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:40:07) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:40:07) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:40:07) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:40:07) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:07) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266032407_938788' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that renders with a layout should accept rendering with any layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:08) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266032408_35477' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that renders with a layout should accept rendering with that layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:08) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1266032408_219832' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that renders with a layout should reject rendering with another layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:08) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `__bind_1266032408_316338' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that renders without a layout should reject rendering with a layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:09) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266032409_22533' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.0ms) Rendered rescues/_request_and_response (1.7ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:09) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:09) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:09) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:09) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:09) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:09) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:09) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:10) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:10) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:10) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:10) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:10) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:10) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:10) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:11) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:12) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266032412_151732' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:12) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266032412_326902' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:12) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266032412_423682' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:12) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266032412_611042' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:12) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266032412_707711' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:40:12) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1266032412_883788' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:41) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:42) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:42) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:42) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:42) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:42) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.3ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:42:43', NULL, '2010-02-12 22:42:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:42:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:42:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:42:43) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:42:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:42:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 79ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:42:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:44) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:45) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:42:45) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:42:45) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:42:45) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:42:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:46) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:47) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266032567_315802' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (102.2ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:47) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:49) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:49) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:49) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:51) [GET] Rendering examples/example Completed in 83ms (View: 81, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:42:51) [GET] Rendering examples/example Completed in 87ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  [4;35;1mExample Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:12) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:12) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:12) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:13) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:13) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:13) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:44:14', NULL, '2010-02-12 22:44:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 64) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:44:14) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:44:14) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:44:14) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:44:14) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 90ms (View: 87, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:16) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:44:16) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:44:16) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:44:16) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:44:16) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:16) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:16) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:16) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:17) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:17) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:17) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:17) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:17) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:17) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266032657_805399' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.1ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:18) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:18) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:18) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:18) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:18) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:18) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:18) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:18) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:19) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:19) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:19) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:19) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:19) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:19) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:19) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:44:22) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.5ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.3ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (1.8ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (1.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:31) [GET] Rendering examples/example Completed in 9ms (View: 7, DB: 18) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:31) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:32) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:32) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:32) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:32) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:32) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:32) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.3ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.2ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-12 22:49:33', NULL, '2010-02-12 22:49:33') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:49:33) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 7ms (DB: 65) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:49:33) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-12 22:49:33) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:49:33) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:49:33) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:49:33) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Completed in 2ms (View: 1, DB: 17) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:34) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:35) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:35) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:35) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:49:35) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:49:35) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:49:35) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-12 22:49:35) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:36) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:36) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:36) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:36) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:36) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:36) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:36) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:37) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:37) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1266032977_176887' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (23.8ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:37) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:37) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:37) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:37) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:37) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:38) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:38) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:38) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:38) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:38) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:38) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:38) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:39) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:39) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:39) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:40) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:40) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:40) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:40) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-12 22:49:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (3.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.6ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (5.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (6.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:28) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:28) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:28) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:28) [GET] Rendering examples/example Completed in 8ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:29) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:29) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:29) [GET] Rendering examples/example Completed in 8ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:29) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (1.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (1.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.6ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.2ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.2ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.3ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.2ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:30', NULL, '2010-02-26 13:45:30') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.5ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:45:30) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 7ms (DB: 69) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:45:30) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:45:30) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:45:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:45:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:45:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Completed in 2ms (View: 1, DB: 18) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:31) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:32) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:32) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:32) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:45:32) [GET] Rendering examples/show Completed in 8ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:45:32) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:45:32) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:45:32) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:33) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:33) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:33) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 9, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:33) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:33) [GET] Completed in 4ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:33) [GET] Completed in 4ms (View: 2, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:33) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:34) [GET] Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:34) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1267209934_277101' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.5ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:34) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:34) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:34) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:34) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:35) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:35) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:35) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:35) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:35) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:35) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:35) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:36) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:36) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:36) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:36) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:37) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:37) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:38) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:38) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:38) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:38) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:38) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:38) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.5ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.5ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.5ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:55) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:55) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:55) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:55) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:55) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:55) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:55) [GET] Rendering examples/example Completed in 7ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:56) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.3ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.2ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.2ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:56', NULL, '2010-02-26 13:45:56') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.3ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:45:57', NULL, '2010-02-26 13:45:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 30ms (View: 27, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:45:57) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:45:57) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 102ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:45:57) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:45:57) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 20ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 98ms (View: 97, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:45:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:58) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:58) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:58) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:58) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:58) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:59) [GET] Completed in 4ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:45:59) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:45:59) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:45:59) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:45:59) [GET] Rendering examples/show Completed in 7ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:59) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 11ms (View: 9, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:59) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 11ms (View: 9, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:45:59) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:00) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:00) [GET] Completed in 4ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:00) [GET] Completed in 4ms (View: 2, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:00) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:00) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:00) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1267209960_853397' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.5ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:01) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:01) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:01) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:01) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:01) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:01) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:01) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:02) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:02) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:02) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:02) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:02) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:02) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:02) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:03) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:04) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:04) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:04) [GET] Rendering examples/example Completed in 8ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:04) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:04) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:04) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:05) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:46:05) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.5ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.3ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.3ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.3ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:27) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:27) [GET] Rendering examples/example Completed in 8ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:27) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:27) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:27) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:28) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:28) [GET] Rendering examples/example Completed in 7ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:28) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.4ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (1.0ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.4ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.9ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.3ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 13:47:29', NULL, '2010-02-26 13:47:29') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-26 13:47:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 12ms (View: 8, DB: 68) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-02-26 13:47:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:47:29) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:47:29) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 105ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:47:29) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 13:47:29) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:47:29) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:47:29) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:47:29) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 13:47:29) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:47:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:47:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:47:29) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:47:29) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 98ms (View: 97, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Completed in 15ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:30) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:31) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:31) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:31) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:47:31) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:47:31) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:47:31) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 13:47:31) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:32) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 11ms (View: 9, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:32) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 11ms (View: 9, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:32) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 9, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:32) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:32) [GET] Completed in 4ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:32) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:32) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:33) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:33) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1267210053_258814' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.7ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:33) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:33) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:33) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:33) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:34) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:34) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:34) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:34) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:34) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:34) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:34) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:35) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:35) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:35) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:35) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:36) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:36) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:36) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:37) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:37) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:37) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:37) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 13:47:37) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) select sqlite_version(*) SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.3ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:52) [GET] Rendering examples/example Completed in 7ms (View: 6, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:53) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:53) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:53) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:53) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:53) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:53) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:53) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.6ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.3ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (1.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.2ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.3ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.2ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.3ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.2ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-02-26 16:05:55', NULL, '2010-02-26 16:05:55') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 16:05:55) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 7ms (DB: 71) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 16:05:55) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-02-26 16:05:55) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-02-26 16:05:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:56) [GET] Completed in 2ms (View: 1, DB: 18) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:56) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:56) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:56) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:56) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:56) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 16:05:57) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 16:05:57) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 16:05:57) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-02-26 16:05:57) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:57) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:57) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 12ms (View: 10, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:58) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 13ms (View: 9, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:58) [GET] Rendering examples/example Completed in 8ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:58) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:58) [GET] Completed in 5ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:58) [GET] Completed in 4ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:58) [GET] Completed in 4ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:59) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1267218358_995682' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (28.6ms) Rendered rescues/_request_and_response (1.9ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:59) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:59) [GET] Completed in 4ms (View: 3, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:59) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:59) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:59) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:05:59) [GET] Completed in 7ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:00) [GET] Completed in 4ms (View: 2, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:00) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:00) [GET] Completed in 4ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:00) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:00) [GET] Completed in 5ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:00) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:01) [GET] Completed in 10ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:01) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:01) [GET] Completed in 6ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:02) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:03) [GET] Rendering examples/example Completed in 8ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:03) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:03) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:03) [GET] Rendering examples/example Completed in 8ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:03) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:03) [GET] Rendering examples/example Completed in 8ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-02-26 16:06:03) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.5ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.3ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (1.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.3ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.7ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (1.0ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:00) [GET] Rendering examples/example Completed in 7ms (View: 6, DB: 18) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:00) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:01) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:01) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:01) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:01) [GET] Rendering examples/example Completed in 9ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:01) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:01) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (1.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (2.9ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.8ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:02', NULL, '2010-03-02 18:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:02', NULL, '2010-03-02 18:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:02', NULL, '2010-03-02 18:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:02', NULL, '2010-03-02 18:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:03', NULL, '2010-03-02 18:18:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:03', NULL, '2010-03-02 18:18:03') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:03', NULL, '2010-03-02 18:18:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:03', NULL, '2010-03-02 18:18:03') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:03', NULL, '2010-03-02 18:18:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:03', NULL, '2010-03-02 18:18:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:03', NULL, '2010-03-02 18:18:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:03', NULL, '2010-03-02 18:18:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:03', NULL, '2010-03-02 18:18:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:18:03', NULL, '2010-03-02 18:18:03') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:18:03) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 7ms (DB: 75) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:18:03) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:18:03) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 98) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 18ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:04) [GET] Completed in 3ms (View: 1, DB: 19) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:04) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-03-02 18:18:04) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-03-02 18:18:05) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-03-02 18:18:05) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-03-02 18:18:05) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:05) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:05) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 9, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:05) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 11ms (View: 9, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:05) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:06) [GET] Completed in 4ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:06) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:06) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:06) [GET] Completed in 4ms (View: 2, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:06) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1267571886_661191' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.4ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:06) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:06) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:07) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:07) [GET] Completed in 5ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:07) [GET] Completed in 4ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:07) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:07) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:07) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:08) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:08) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:08) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:08) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:08) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:10) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:10) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:10) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:10) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:10) [GET] Rendering examples/example Completed in 9ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:10) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:11) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:18:11) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.8ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.3ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (1.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (10.8ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.8ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.4ms) DROP TABLE IF EXISTS examples SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (3.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.4ms) select sqlite_version(*) SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.3ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.3ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.3ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.3ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:14) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 19) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:14) [GET] Rendering examples/example Completed in 8ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:14) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:14) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:15) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:15) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:15) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:15) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.5ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.3ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.2ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:16', NULL, '2010-03-02 18:50:16') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.3ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:50:16) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 7ms (DB: 66) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:50:16) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:16) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:17) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:17) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:17) [GET] Completed in 3ms (View: 1, DB: 19) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:17) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.3ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.3ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.3ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (1.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:24) [GET] Rendering examples/example Completed in 25ms (View: 23, DB: 21) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:24) [GET] Rendering examples/example Completed in 11ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:24) [GET] Rendering examples/example Completed in 87ms (View: 85, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:24) [GET] Rendering examples/example Completed in 8ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:24) [GET] Rendering examples/example Completed in 12ms (View: 10, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:24) [GET] Rendering examples/example Completed in 43ms (View: 41, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:25) [GET] Rendering examples/example Completed in 8ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:25) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.7ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.5ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.3ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.2ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.6ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (1.5ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-03-02 18:50:26', NULL, '2010-03-02 18:50:26') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:50:26) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 8ms (DB: 70) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:50:26) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 12, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 104) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.7ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:27) [GET] Completed in 3ms (View: 1, DB: 20) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:28) [GET] Completed in 4ms (View: 2, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-03-02 18:50:28) [GET] Rendering examples/show Completed in 7ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-03-02 18:50:28) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-03-02 18:50:28) [GET] Rendering examples/show Completed in 7ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-03-02 18:50:28) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:28) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 21ms (View: 19, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:29) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 47ms (View: 32, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:29) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 12ms (View: 9, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:29) [GET] Rendering examples/example Completed in 8ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:29) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:29) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:30) [GET] Completed in 4ms (View: 2, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:30) [GET] Completed in 4ms (View: 2, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:30) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1267573830_424924' config/initializers/./../../../lib/shoulda/context.rb:396:in `call' config/initializers/./../../../lib/shoulda/context.rb:396:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:395:in `each' config/initializers/./../../../lib/shoulda/context.rb:395:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:377:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (25.1ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:30) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:30) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:30) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:31) [GET] Completed in 4ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:31) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:31) [GET] Completed in 5ms (View: 3, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:31) [GET] Completed in 4ms (View: 2, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:31) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:31) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:31) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:32) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:32) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:32) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:32) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:32) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:34) [GET] Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:34) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:34) [GET] Rendering examples/example Completed in 8ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:34) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:34) [GET] Rendering examples/example Completed in 8ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:35) [GET] Rendering examples/example Completed in 8ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:35) [GET] Rendering examples/example Completed in 7ms (View: 6, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-03-02 18:50:35) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.5ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.5ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.5ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:50:58) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 9ms (DB: 6) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:50:58) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 8, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:50:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:51:08) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 9ms (DB: 7) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 18:51:08) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 65ms (View: 63, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 18:51:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.4ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.5ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:03:43) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 10ms (DB: 8) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:03:43) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 18ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 65ms (View: 64, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:03:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:03:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:03:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:03:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:03:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:03:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:03:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:03:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (1.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:04:08) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 9ms (DB: 7) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:04:08) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 65ms (View: 63, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:04:08) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.3ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:11:13) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 10ms (DB: 7) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:11:13) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:11:13) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:11:13) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:11:13) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:11:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:11:13) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:11:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:11:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:11:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 64ms (View: 63, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:11:53) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 9ms (DB: 7) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:11:53) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 65ms (View: 64, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:11:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:14:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 9ms (DB: 7) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:14:31) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:14:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:14:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:14:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:14:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:14:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:14:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:14:31) [GET] Parameters: {"user_id"=>#} User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:14:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:14:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 65ms (View: 64, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:14:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:14:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:14:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:14:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:14:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:14:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:14:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:14:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:14:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:15:06) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 9ms (DB: 7) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:15:06) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 64ms (View: 63, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:15:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:15:07) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:16:11) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 9ms (DB: 7) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-03-02 19:16:11) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 7ms (DB: 3) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 17ms (View: 16, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 65ms (View: 64, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:16:11) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:16:12) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:16:12) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:16:12) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:16:12) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:16:12) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:16:12) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-03-02 19:16:12) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.6ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.3ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (13.2ms) select sqlite_version(*) SQL (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.4ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.3ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.8ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:10) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1271879770_576785' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:10) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1271879770_812149' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should accept assigning to that variable with the correct class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:10) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1271879770_913469' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:11) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1271879771_81414' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:11) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1271879771_185457' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:11) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/assign_to_matcher_test.rb:7:in `__bind_1271879771_362180' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that assigns to an instance variable should reject assigning to that variable with another class. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.3ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (1.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.2ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.2ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.3ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') SQL (0.3ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (4.0ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-04-21 15:56:12', NULL, '2010-04-21 15:56:12') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.7ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'mY cUTE kITTEN!') LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-04-21 15:56:12) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 78) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-04-21 15:56:12) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-04-21 15:56:12) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-04-21 15:56:12) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-04-21 15:56:12) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-04-21 15:56:12) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 6ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-04-21 15:56:12) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 3) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-04-21 15:56:12) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-04-21 15:56:12) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-04-21 15:56:12) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 3, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-04-21 15:56:12) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.6ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 28ms (View: 26, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 9ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 128ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (1.9ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 4) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (1.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (3.1ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 22ms (View: 17, DB: 7) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 5, DB: 3) | 200 OK [http://test.host/users/1/posts] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 4) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (1.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 4, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:13) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1271879773_947858' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that renders with a layout should accept rendering with any layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:14) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1271879774_54407' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that renders with a layout should accept rendering with that layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:14) [GET] Rendering template within layouts/wide ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:7:in `__bind_1271879774_253297' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that renders with a layout should reject rendering with another layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:14) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/render_with_layout_matcher_test.rb:25:in `__bind_1271879774_366876' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that renders without a layout should reject rendering with a layout. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:14) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:14) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:14) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:15) [GET] Completed in 4ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:15) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:74:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1271879775_136049' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (25.6ms) Rendered rescues/_request_and_response (1.9ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:15) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:15) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:15) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:15) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:15) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:16) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:16) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:16) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:16) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:16) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:16) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:16) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:17) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:17) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:17) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:18) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1271879778_760471' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should accept assigning false to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:18) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1271879778_880716' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should accept assigning nil to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:19) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1271879779_114531' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should accept assigning the correct value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:19) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1271879779_245143' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should accept assigning to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:19) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1271879779_475859' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should reject assigning another value to that variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-04-21 15:56:19) [GET] ActionView::MissingTemplate (Missing template examples/example.erb in view path app/views): /test/model_builder.rb:74:in `build_response' /test/matchers/controller/set_session_matcher_test.rb:7:in `__bind_1271879779_660493' config/initializers/./../../../lib/shoulda/context.rb:357:in `call' config/initializers/./../../../lib/shoulda/context.rb:357:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:356:in `each' config/initializers/./../../../lib/shoulda/context.rb:356:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:338:in `test: a controller that sets a session variable should reject assigning to another variable. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendering rescues/layout (internal_server_error) User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.5ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.4ms) select sqlite_version(*) SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.2ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:55) [GET] Rendering examples/example Completed in 7ms (View: 6, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:55) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:55) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:55) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:56) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:56) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:56) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:56) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (1.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.4ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.4ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') SQL (0.3ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:48:57', NULL, '2010-06-07 09:48:57') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 09:48:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 09:48:57) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 09:48:58) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 09:48:58) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 3) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:58) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:59) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:59) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:59) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:48:59) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 09:48:59) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 09:48:59) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 09:48:59) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 09:49:00) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:00) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:00) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 88ms (View: 86, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:00) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:00) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:00) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:01) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:01) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:01) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:01) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275918541_395917' config/initializers/./../../../lib/shoulda/context.rb:401:in `call' config/initializers/./../../../lib/shoulda/context.rb:401:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:400:in `each' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:382:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (25.0ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:01) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:01) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:01) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:02) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:02) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:02) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:02) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:02) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:02) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:02) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:02) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:03) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:03) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:03) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:03) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:04) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:04) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:05) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:05) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:49:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.3ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:16) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:16) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:16) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:16) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:16) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:17) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:17) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:17) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.4ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.2ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.2ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 09:53:18', NULL, '2010-06-07 09:53:18') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 09:53:18) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 09:53:18) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:18) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:19) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:20) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 09:53:20) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 09:53:20) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 09:53:20) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 09:53:20) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:20) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:20) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 88ms (View: 86, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:21) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:21) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:21) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:21) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:21) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:21) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275918801_931938' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.5ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:22) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:22) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:22) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:22) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:22) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:22) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:23) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:23) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:23) [GET] Completed in 85ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:24) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:24) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:24) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:25) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:25) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:25) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:28) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 09:53:28) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.2ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:35:57) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:35:57) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:35:57) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:35:57) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:35:57) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:35:57) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:35:58) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:35:58) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:35:59', NULL, '2010-06-07 10:35:59') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 10:35:59) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 10:35:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 10:35:59) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 10:35:59) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:35:59) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:35:59) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:35:59) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:35:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:00) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:01) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:01) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:36:01) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:36:01) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:36:01) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:36:01) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:01) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:02) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 88ms (View: 86, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:02) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:02) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:02) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:02) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:02) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:03) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:03) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275921363_147538' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.5ms) Rendered rescues/_request_and_response (1.9ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:03) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:03) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:03) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:03) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:03) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:04) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:04) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:04) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:04) [GET] Completed in 85ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:04) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:04) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:04) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:05) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:05) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:05) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:06) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:06) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:06) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:07) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:07) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:07) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:07) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:36:07) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.3ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:29) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:29) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:37:31', NULL, '2010-06-07 10:37:31') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 10:37:31) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 7ms (DB: 65) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 10:37:31) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (89.1ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 102ms (View: 10, DB: 91) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.7ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.5ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:31) [GET] Completed in 2ms (View: 1, DB: 14) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:32) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:32) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:32) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:32) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:32) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:37:32) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:37:32) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:37:33) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:37:33) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:33) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:33) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:33) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:33) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:33) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:34) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:34) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:34) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:34) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275921454_543538' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.8ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:34) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:34) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:34) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:35) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:35) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:35) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:35) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:35) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:35) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:35) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:36) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:36) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:36) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:36) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:36) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:37) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:38) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:38) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:38) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:38) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:38) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:38) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:38) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:58) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:59) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:59) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:59) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:37:59) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:00', NULL, '2010-06-07 10:38:00') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 64) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 10:38:01) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 10:38:01) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.6ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (95.4ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 97) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:01) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:02) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:02) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:02) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:02) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:02) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:38:02) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:38:02) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:38:03) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:38:03) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:03) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:03) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 90ms (View: 88, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:03) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:03) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:03) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:04) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:04) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:04) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:04) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275921484_503338' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.8ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:04) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:04) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:05) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:05) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:05) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:05) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:05) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:05) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:05) [GET] Completed in 84ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:05) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:06) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:06) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:06) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:06) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:06) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:07) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:07) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.6ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:41) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:38:43', NULL, '2010-06-07 10:38:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 64) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 10:38:43) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 10:38:43) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (95.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:38:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 97) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:44) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:44) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:44) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:44) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:44) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:45) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:38:45) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:38:45) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:38:45) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:38:45) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:45) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:45) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 95ms (View: 93, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:46) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:46) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275921526_975064' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.5ms) Rendered rescues/_request_and_response (2.0ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:47) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:47) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:47) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:48) [GET] Completed in 99ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:48) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:49) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:49) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:50) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:51) [GET] Rendering examples/example Completed in 10ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:38:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (1.1ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:12) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:12) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:13) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:13', NULL, '2010-06-07 10:42:13') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:13', NULL, '2010-06-07 10:42:13') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:13', NULL, '2010-06-07 10:42:13') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:13', NULL, '2010-06-07 10:42:13') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:13', NULL, '2010-06-07 10:42:13') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:13', NULL, '2010-06-07 10:42:13') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:13', NULL, '2010-06-07 10:42:13') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:13', NULL, '2010-06-07 10:42:13') SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:13', NULL, '2010-06-07 10:42:13') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:13', NULL, '2010-06-07 10:42:13') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:14', NULL, '2010-06-07 10:42:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:14', NULL, '2010-06-07 10:42:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:14', NULL, '2010-06-07 10:42:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 10:42:14', NULL, '2010-06-07 10:42:14') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 63) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 10:42:14) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 10:42:14) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 10:42:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:15) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:15) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:15) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:42:15) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:42:15) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:42:16) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 10:42:16) [GET] Rendering examples/show Completed in 84ms (View: 82, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:16) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:16) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:16) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:16) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:17) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:17) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:17) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:17) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:17) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275921737_568684' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.5ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:17) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:17) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:18) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:18) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:18) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:18) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:18) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:18) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:18) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:19) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:19) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:19) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:19) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:19) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:19) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:20) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 10:42:21) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:41) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.4ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_type" varchar(255), "profilable_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:14:43', NULL, '2010-06-07 11:14:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 64) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:14:43) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:14:43) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:14:43) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:44) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:44) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:44) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:44) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:44) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:44) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:14:45) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:14:45) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:14:45) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:14:45) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:45) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:45) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:45) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:46) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:46) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275923686_831335' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.6ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:47) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:47) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:47) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:47) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:47) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:48) [GET] Completed in 86ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:48) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:48) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:48) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:50) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:50) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:50) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:14:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.3ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.3ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.3ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.3ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:25) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 17) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:25) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:25) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:25) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:25) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:25) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:26) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:26) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:27', NULL, '2010-06-07 11:15:27') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 63) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:15:27) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:15:27) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:27) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 103ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:28) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:28) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:28) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:28) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:28) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:28) [GET] Completed in 2ms (View: 1, DB: 14) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:28) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:28) [GET] Redirected to http://test.host/some/url Completed in 4ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:28) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:28) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:29) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:15:29) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:15:29) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:15:29) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:15:29) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:29) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:30) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:30) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:30) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:30) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:30) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:30) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:30) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275923730_989569' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.5ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:31) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:31) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:31) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:31) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:31) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:31) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:32) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:32) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:32) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:32) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:32) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:32) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:32) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:33) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:33) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:35) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:35) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:35) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:35) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:42) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:42) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:42) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (1.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:43', NULL, '2010-06-07 11:15:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:43', NULL, '2010-06-07 11:15:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:43', NULL, '2010-06-07 11:15:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:43', NULL, '2010-06-07 11:15:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:43', NULL, '2010-06-07 11:15:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:43', NULL, '2010-06-07 11:15:43') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:43', NULL, '2010-06-07 11:15:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:43', NULL, '2010-06-07 11:15:43') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:43', NULL, '2010-06-07 11:15:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:43', NULL, '2010-06-07 11:15:43') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:44', NULL, '2010-06-07 11:15:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:44', NULL, '2010-06-07 11:15:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:44', NULL, '2010-06-07 11:15:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:15:44', NULL, '2010-06-07 11:15:44') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 66) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:15:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:15:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:15:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:15:44) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:15:44) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:45) [GET] Completed in 2ms (View: 1, DB: 14) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:45) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:45) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:15:45) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:15:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:15:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:15:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:47) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:47) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275923747_708193' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.6ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:48) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:48) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:49) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:49) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:49) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:49) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:49) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:49) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:49) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:15:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:51) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:51) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:52) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:16:53', NULL, '2010-06-07 11:16:53') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:16:53) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 64) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:16:54) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 92) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:16:54) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:16:54) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:16:54) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 6ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 9, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 97ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:54) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:55) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:55) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:55) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:55) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:55) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:16:55) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:16:55) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:16:56) [GET] Rendering examples/show Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:16:56) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:56) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:56) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:56) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:56) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:56) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:57) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:57) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:57) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:57) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275923817_590454' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.9ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:57) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:57) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:58) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:58) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:58) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:58) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:58) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:58) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:58) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:59) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:59) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:59) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:59) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:59) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:16:59) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:17:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:17:01) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:17:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:17:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:17:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:17:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:17:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:17:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.5ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope2" integer, "attr" varchar(255), "scope1" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope2" integer, "attr" varchar(255), "scope1" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope2" integer, "attr" varchar(255), "scope1" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope2" integer, "attr" varchar(255), "scope1" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope2" integer, "attr" varchar(255), "scope1" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:00) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:00) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:01) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (1.0ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.3ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.2ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:18:02', NULL, '2010-06-07 11:18:02') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:18:02) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 64) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:18:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:18:02) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 91) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:18:03) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:18:03) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:18:03) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 97ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:03) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:04) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:04) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:18:04) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:18:04) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:18:04) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:18:05) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:05) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:05) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:05) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:05) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:05) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:06) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:06) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:06) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275923886_360041' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.7ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:06) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:06) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:06) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:06) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:07) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:07) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:07) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:07) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:07) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:07) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:07) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:08) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:08) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:08) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:09) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:09) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:18:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (104.6ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.2ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:20) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:20) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:20) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:20) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:20) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:20) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:20) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:20) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.2ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:21:21', NULL, '2010-06-07 11:21:21') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 64) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:21:22) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 91) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:21:22) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:21:22) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:21:22) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 98ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:21:22) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:23) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:23) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:23) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:23) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:23) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:23) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:21:23) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:21:24) [GET] Rendering examples/show Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:21:24) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:21:24) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:24) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:24) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:24) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:24) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:25) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:25) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:25) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:25) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:25) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275924085_638907' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.5ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:25) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:25) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:26) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:26) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:26) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:26) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:26) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:26) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:26) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:27) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:27) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:27) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:27) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:27) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:27) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:21:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.5ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.2ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.3ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:46) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:46) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:46) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:47) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:47) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:47) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:47) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:47) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.5ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.9ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.2ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("updated_at", "dog_id", "created_at") VALUES('2010-06-07 11:50:48', NULL, '2010-06-07 11:50:48') Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.8ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:50:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 8, DB: 64) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 11:50:48) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:50:48) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:50:48) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:50:48) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 11:50:48) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:50:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:50:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:50:48) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 15, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 98ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:49) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:50) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:50) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:50) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:50:50) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:50:50) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:50:50) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 11:50:51) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:51) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:51) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:51) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:51) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:51) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:51) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:51) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:52) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:52) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275925852_251291' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.2ms) Rendered rescues/_request_and_response (1.8ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:52) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:52) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:52) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:52) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:53) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:53) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:53) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:53) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:53) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:53) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:53) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:53) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:54) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:54) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:54) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:55) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:55) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:55) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:56) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:56) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:56) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:56) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 11:50:56) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.4ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.4ms) PRAGMA index_list("users") SQL (0.5ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "scope2" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "scope2", "attr") VALUES(1, 2, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:32) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 14) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:32) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:32) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:33) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:33) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.0ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.2ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:10:34', '2010-06-07 12:10:34', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 7, DB: 57) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 12:10:34) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 12:10:34) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 12:10:34) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 12:10:34) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 11ms (View: 9, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:10:34) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:35) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:36) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:36) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 12:10:36) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 12:10:36) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 12:10:36) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 12:10:36) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:36) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:36) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:37) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:37) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:37) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:37) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:37) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:37) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:37) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275927037_854480' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (25.3ms) Rendered rescues/_request_and_response (1.4ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:37) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:38) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:38) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:38) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:38) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:38) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:38) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:38) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:39) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:39) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:39) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:39) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:39) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:39) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:39) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:40) [GET] Rendering examples/example Completed in 76ms (View: 74, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:41) [GET] Rendering examples/example Completed in 78ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:41) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:41) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:10:41) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:52) [GET] Rendering examples/example Completed in 63ms (View: 61, DB: 14) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:53) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:53) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:53) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:53) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:53) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:53) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:53) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.3ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (1.0ms) DROP TABLE IF EXISTS examples SQL (0.7ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 12:24:54', '2010-06-07 12:24:54', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 12:24:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 59) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 12:24:54) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 12:24:54) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 12:24:55) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 12:24:55) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 12:24:55) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:55) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:56) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:56) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:56) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:56) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 12:24:56) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 12:24:56) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 12:24:56) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 12:24:56) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:57) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:57) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:57) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 8ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:57) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:57) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:57) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:57) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:58) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:58) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275927898_196039' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.4ms) Rendered rescues/_request_and_response (1.4ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:58) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:58) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:58) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:58) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:58) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:59) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:59) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:59) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:59) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:59) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:59) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:59) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:24:59) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:25:00) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:25:00) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:25:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:25:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:25:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:25:01) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:25:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:25:02) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:25:02) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 12:25:02) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.3ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:23) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 15) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:23) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:23) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:24) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:24) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:24) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:24) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:24) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.0ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.4ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-07 14:24:25', '2010-06-07 14:24:25', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 14:24:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 7, DB: 122) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-07 14:24:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 14:24:25) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 14:24:25) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 14:24:25) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-07 14:24:25) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 14:24:25) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 14:24:25) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 14:24:25) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-07 14:24:25) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 14:24:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 14:24:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:26) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:27) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:27) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 14:24:28) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 14:24:28) [GET] Rendering examples/show Completed in 73ms (View: 71, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 14:24:28) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-07 14:24:28) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:28) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:28) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:28) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 8ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:29) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:29) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:29) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:29) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:29) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:29) [GET] NameError (uninitialized constant RespondWithMatcherTest::RailsError): /test/matchers/controller/respond_with_matcher_test.rb:97:in `example' /test/model_builder.rb:82:in `build_response' /test/matchers/controller/respond_with_matcher_test.rb:97:in `__bind_1275935069_713890' config/initializers/./../../../lib/shoulda/context.rb:400:in `call' config/initializers/./../../../lib/shoulda/context.rb:400:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:399:in `each' config/initializers/./../../../lib/shoulda/context.rb:399:in `run_current_setup_blocks' config/initializers/./../../../lib/shoulda/context.rb:381:in `test: a controller raising an error should reject responding with any status. ' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:34:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `each' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/testsuite.rb:33:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb:46:in `run_suite' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:67:in `start_mediator' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/console/testrunner.rb:41:in `start' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb:29:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' /Users/jferris/.rvm/ruby-1.8.7-p174/lib/ruby/1.8/test/unit.rb:278 rake (0.8.7) lib/rake/rake_test_loader.rb:5 Rendered rescues/_trace (24.8ms) Rendered rescues/_request_and_response (1.4ms) Rendering rescues/layout (internal_server_error) Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:29) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:30) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:30) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:30) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:30) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:30) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:30) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:30) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:30) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:31) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:31) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:31) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:31) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:31) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:31) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:32) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:33) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:33) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-07 14:24:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "other" integer)  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.7ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) SQL (1.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:37) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 20) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:37) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:37) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:37) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:37) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:37) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:37) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:37) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.0ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (52.4ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.0ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:54:38', '2010-06-08 15:54:38', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 15:54:38) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 10ms (View: 7, DB: 110) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 15:54:38) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:54:38) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:54:38) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:54:39) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:54:39) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:39) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:40) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:41) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:42) [GET] Rendering examples/example Completed in 69ms (View: 68, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:54:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.0ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.5ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.4ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.4ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:57) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 19) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:57) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:57) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:57) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:57) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:57) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:57) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:57) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (52.2ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.2ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:55:58', '2010-06-08 15:55:58', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.2ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 10ms (View: 7, DB: 110) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:55:58) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:55:58) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:55:58) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:55:58) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:55:59) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:00) [GET] Completed in 4ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:01) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:01) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:01) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:01) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:01) [GET] Rendering examples/example Completed in 69ms (View: 68, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.3ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.0ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.3ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.6ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:44) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 19) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:44) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:44) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:44) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:44) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (52.7ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples [4;36;1mSQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.2ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 15:56:45', '2010-06-08 15:56:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 10ms (View: 7, DB: 110) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:56:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:56:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:56:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 15:56:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 11, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Completed in 2ms (View: 1, DB: 11) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:48) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:48) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:48) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:48) [GET] Rendering examples/example Completed in 70ms (View: 68, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 15:56:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:28) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:28) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:28) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:28) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:28) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:28) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:28) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:28) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (1.5ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:00:29', '2010-06-08 16:00:29', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 59) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:00:30) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:00:30) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:00:30) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:00:30) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 9, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:30) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 81ms (View: 79, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Completed in 4ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:31) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:32) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:00:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:01) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:01) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:01) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (1.7ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.3ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.0ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:04:02', '2010-06-08 16:04:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:04:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 59) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:04:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:04:02) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:04:02) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:04:02) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:04:02) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:04:02) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:04:03) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 75ms (View: 73, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:04) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Completed in 67ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:05) [GET] Rendering examples/example Completed in 7ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:04:06) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.3ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.3ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:39) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 17) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:39) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:39) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:39) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:39) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:39) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:39) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:39) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.2ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:05:40', '2010-06-08 16:05:40', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 58) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:05:40) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:05:40) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:05:40) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:05:40) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 76) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:40) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 3ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:41) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 74ms (View: 72, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:42) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:43) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:43) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:05:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.3ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:30) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 16) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:30) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:30) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:30) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:30) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:30) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "profilable_id" integer, "profilable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS profiles SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.0ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:06:31', '2010-06-08 16:06:31', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:06:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 58) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:06:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:06:31) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:06:31) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:06:31) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:06:31) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:06:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:06:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:06:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:06:31) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:06:31) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 75) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:06:32) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 75ms (View: 73, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:33) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:06:34) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:43) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 17) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:43) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:43) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:43) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:44) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:44) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS details SQL (0.2ms) DROP TABLE IF EXISTS people SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.2ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.0ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:48:45', '2010-06-08 16:48:45', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 10ms (View: 6, DB: 58) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:48:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:48:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:48:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:48:45) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 80ms (View: 78, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:48:45) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:46) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:47) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:48) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:48) [GET] Rendering examples/example Completed in 70ms (View: 68, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:48:48) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.2ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.4ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:03) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 20) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:03) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:03) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:04) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:04) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:04) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:04) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:04) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.2ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 16:50:05', '2010-06-08 16:50:05', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 58) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:50:05) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:50:05) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:50:05) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 16:50:05) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 14ms (View: 12, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:05) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Redirected to http://test.host/some/url Completed in 76ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:06) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:07) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 16:50:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.3ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.1ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.2ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.4ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 17) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:44) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:44) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:44) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:45) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:45) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:45) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.2ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (8.6ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.2ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.5ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:17:46', '2010-06-08 17:17:46', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 67) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:17:46) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:17:46) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:17:46) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:17:46) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 13ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:17:46) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Completed in 2ms (View: 1, DB: 13) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Redirected to http://test.host/some/url Completed in 3ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 74ms (View: 72, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:47) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 3ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:48) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:49) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:49) [GET] Rendering examples/example Completed in 69ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:49) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:49) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:49) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:49) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:49) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:17:49) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.2ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.2ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 17:19:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 11ms (View: 6, DB: 7) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 17:19:58) [GET] Parameters: {"user_id"=>#} User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:19:58) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/2 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:19:58) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/3 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:19:58) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/4 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:19:58) [POST] Parameters: {"post"=>{"title"=>"first post", "body"=>"blah blah blah"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/5 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:19:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 13, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:19:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:19:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:19:58) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:19:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:19:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:19:58) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 66ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:19:58) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 5ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:19:59) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.4ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 17) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:12) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:12) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:12) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.2ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.3ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.2ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:20:13', '2010-06-08 17:20:13', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 58) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:20:13) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:20:13) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:20:13) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:20:13) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 16ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:13) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 75ms (View: 73, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:14) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 10ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:15) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:16) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:16) [GET] Rendering examples/example Completed in 70ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:16) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:16) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:16) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:16) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:16) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:20:16) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.4ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:07) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 17) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:07) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:08) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:08) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:08) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:08) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:08) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_type" varchar(255), "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer, "relative_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer, "guardian_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_type" varchar(255), "caretaker_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.3ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.2ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.2ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 17:26:09', '2010-06-08 17:26:09', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 58) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:26:09) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:26:09) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:26:09) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 17:26:09) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 10, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 15ms (View: 14, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 6, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 8ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 7ms (View: 5, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:09) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Completed in 2ms (View: 1, DB: 12) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 75ms (View: 73, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:10) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:11) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:12) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:12) [GET] Rendering examples/example Completed in 70ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:12) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 17:26:12) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.2ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255), "scope1" integer, "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.2ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.3ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.1ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.2ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.2ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.2ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.2ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.2ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.7ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:23) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 17) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:23) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:23) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:23) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:23) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:23) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:23) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:23) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.0ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.2ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.2ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) SQL (0.2ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 19:59:24', '2010-06-08 19:59:24', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.5ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 19:59:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 55) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 19:59:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 19:59:24) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 19:59:24) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 19:59:24) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 19:59:24) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 19:59:24) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 9, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 19:59:24) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 19:59:24) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 19:59:24) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 19:59:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 88ms (View: 86, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 19:59:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 19:59:24) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 2) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Completed in 2ms (View: 1, DB: 11) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:25) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 8, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 3ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 3ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:26) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:27) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:27) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:27) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:27) [GET] Rendering examples/example Completed in 70ms (View: 68, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 19:59:27) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.3ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.2ms) select sqlite_version(*) SQL (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  SQL (0.0ms) PRAGMA index_list("schema_migrations") SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") SQL (0.1ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) SQL (0.2ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "age" integer, "ssn" varchar(255), "phone" varchar(255))  SQL (0.0ms) PRAGMA index_list("users") SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") SQL (0.1ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_name" ON "users" ("name") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE INDEX "index_users_on_age" ON "users" ("age") SQL (0.2ms) PRAGMA index_list("users") SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.1ms) CREATE UNIQUE INDEX "index_users_on_email_and_name" ON "users" ("email", "name") SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('1') Migrating to CreatePosts (2) SQL (0.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar(255), "body" text)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('2') Migrating to CreateTaggings (3) SQL (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "tag_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('3') Migrating to CreateTags (4) SQL (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('4') Migrating to CreateDogs (5) SQL (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('5') Migrating to CreateAddresses (6) SQL (0.1ms) CREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "addressable_id" integer, "addressable_type" varchar(255), "zip" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('6') Migrating to CreateFleas (7) SQL (0.1ms) CREATE TABLE "fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('7') Migrating to CreateDogsFleas (8) SQL (0.1ms) CREATE TABLE "dogs_fleas" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "flea_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('8') Migrating to CreateProducts (9) SQL (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "price" integer, "weight" integer, "size" varchar(255), "tangible" boolean, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('9') Migrating to CreateFriendships (10) SQL (0.1ms) CREATE TABLE "friendships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "friend_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('10') Migrating to CreateTreats (11) SQL (0.1ms) CREATE TABLE "treats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dog_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('11') Migrating to CreateProfiles (20090506203502) SQL (0.1ms) CREATE TABLE "profiles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203502') Migrating to CreateRegistrations (20090506203536) SQL (0.1ms) CREATE TABLE "registrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "profile_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090506203536') Migrating to CreateCats (20090513104502) SQL (0.1ms) CREATE TABLE "cats" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "address_id" integer)  SQL (0.1ms) INSERT INTO schema_migrations (version) VALUES ('20090513104502') SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.5ms) SELECT version FROM schema_migrations Migrating to CreateUsers (1) Migrating to CreatePosts (2) Migrating to CreateTaggings (3) Migrating to CreateTags (4) Migrating to CreateDogs (5) Migrating to CreateAddresses (6) Migrating to CreateFleas (7) Migrating to CreateDogsFleas (8) Migrating to CreateProducts (9) Migrating to CreateFriendships (10) Migrating to CreateTreats (11) Migrating to CreateProfiles (20090506203502) Migrating to CreateRegistrations (20090506203536) Migrating to CreateCats (20090513104502) Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" IS NULL AND "addresses".addressable_type IS NULL AND "addresses".addressable_id IS NULL) LIMIT 1 Address Load (0.2ms) SELECT * FROM "addresses" LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456473) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'User' AND "addresses".addressable_id = 309456474) LIMIT 1 Address Load (0.1ms) SELECT "addresses".id FROM "addresses" WHERE ("addresses"."title" = 'Home' AND "addresses".addressable_type = 'Uses' AND "addresses".addressable_id = 309456474) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" varchar(255), "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:01) [GET] Rendering examples/example Completed in 6ms (View: 5, DB: 17) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:01) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:01) [GET] Rendering examples/example Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:01) [GET] Rendering examples/example Completed in 60ms (View: 58, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:01) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:01) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "parent_type" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.2ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) CREATE TABLE "people_relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "relative_id" integer, "person_id" integer)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS people_relatives SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.2ms) CREATE TABLE "relatives" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS relatives SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "guardian_type" varchar(255), "guardian_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.2ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) CREATE TABLE "conceptions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "child_id" integer, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS conceptions SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "caretaker_id" integer, "caretaker_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "detailable_id" integer, "detailable_type" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.2ms) CREATE TABLE "details" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer)  SQL (0.0ms) DROP TABLE IF EXISTS people SQL (0.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS details SQL (0.1ms) DROP TABLE IF EXISTS people SQL (0.3ms) DROP TABLE IF EXISTS examples SQL (0.4ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" integer)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "nickname" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 'f')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean DEFAULT 't')  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(500))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "admin" boolean)  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(5))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(15))  SQL (0.2ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,2))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "salary" decimal(10,4))  SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.0ms) PRAGMA index_list("geocodings") SQL (0.1ms) CREATE INDEX "index_geocodings_on_geocodable_type_and_geocodable_id" ON "geocodings" ("geocodable_type", "geocodable_id") SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.2ms) PRAGMA index_info('index_geocodings_on_geocodable_type_and_geocodable_id') SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.2ms) CREATE TABLE "geocodings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geocodable_id" integer, "geocodable_type" varchar(255))  SQL (0.1ms) PRAGMA index_list("geocodings") SQL (0.1ms) DROP TABLE IF EXISTS geocodings SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "age" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_age" ON "superheros" ("age") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_age') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.2ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE UNIQUE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.0ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) CREATE TABLE "superheros" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ssn" integer)  SQL (0.0ms) PRAGMA index_list("superheros") SQL (0.1ms) CREATE INDEX "index_superheros_on_ssn" ON "superheros" ("ssn") SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) PRAGMA index_list("superheros") SQL (0.1ms) PRAGMA index_info('index_superheros_on_ssn') SQL (0.1ms) DROP TABLE IF EXISTS superheros SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples User Load (0.2ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'bad' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'good@example.com' AND "users".name IS NULL) LIMIT 1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title 2') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title 2', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 9 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 8 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 10 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Destroy (0.1ms) DELETE FROM "posts" WHERE "id" = 9 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 11 SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) Treat Load (0.1ms) SELECT * FROM "treats" LIMIT 1 Treat Destroy (0.1ms) DELETE FROM "treats" WHERE "id" = 12 SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  SQL (0.1ms) SELECT count(*) AS count_all FROM "posts"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 Treat Create (0.1ms) INSERT INTO "treats" ("created_at", "updated_at", "dog_id") VALUES('2010-06-08 20:59:02', '2010-06-08 20:59:02', NULL) Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'title') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('title', 'body', 1) SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  SQL (0.1ms) SELECT count(*) AS count_all FROM "treats"  Treat Delete all (0.1ms) DELETE FROM "treats" WHERE 1=1 Post Delete all (0.1ms) DELETE FROM "posts" WHERE 1=1 SQL (0.6ms)  SELECT name FROM sqlite_master WHERE type = 'table' AND NOT name = 'sqlite_sequence'  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'My Cute Kitten!') LIMIT 1 Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" IS NULL) LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 9ms (View: 6, DB: 56) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#new (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering posts/new Completed in 3ms (View: 2, DB: 1) | 200 OK [http://test.host/users/1/posts/new] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 20:59:02) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/14 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 20:59:02) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/15 Completed in 4ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 20:59:02) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/16 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#create (for 0.0.0.0 at 2010-06-08 20:59:02) [POST] Parameters: {"post"=>{"body"=>"blah blah blah", "title"=>"first post"}, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT "posts".id FROM "posts" WHERE ("posts"."title" = 'first post') LIMIT 1 Post Create (0.1ms) INSERT INTO "posts" ("title", "body", "user_id") VALUES('first post', 'blah blah blah', 1) User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Redirected to http://test.host/users/1/posts/17 Completed in 5ms (DB: 2) | 302 Found [http://test.host/users/1/posts?post%5Bbody%5D=blah+blah+blah&post%5Btitle%5D=first+post] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 12ms (View: 9, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.1ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Processing PostsController#show (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"id"=>#, "user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1 AND ("posts".user_id = 1))  Rendering template within layouts/wide Rendering posts/show User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 4ms (View: 2, DB: 2) | 200 OK [http://test.host/users/1/posts/1] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 88ms (View: 86, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."id" = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.3ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Rendering template within layouts/posts Rendering posts/index Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 6ms (View: 4, DB: 2) | 200 OK [http://test.host/users/1/posts] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts".user_id = 1)  Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:02) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Parameters: {"user_id"=>#} User Load (0.3ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Processing PostsController#index to rss (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Parameters: {"user_id"=>#} User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."id" = 1)  Completed in 2ms (View: 1, DB: 1) | 200 OK [http://test.host/users/1/posts.rss] Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.1ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Post Load (0.2ms) SELECT * FROM "posts" LIMIT 1 Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Completed in 2ms (View: 1, DB: 11) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Redirected to http://test.host/some/url Completed in 2ms (DB: 0) | 302 Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Rendering examples/show Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#show (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Rendering examples/show Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 73ms (View: 72, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Rendering template within layouts/wide Rendering examples/example Completed in 9ms (View: 7, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:03) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 3ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 500 Internal Server Error [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 404 Not Found [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 501 Not Implemented [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 3ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 301 Moved Permanently [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:04) [GET] Completed in 2ms (View: 1, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:05) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:05) [GET] Rendering examples/example Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] Processing ExamplesController#example (for 0.0.0.0 at 2010-06-08 20:59:05) [GET] Rendering examples/example Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/examples] User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'a@b.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'asdf@asdf.com' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = '' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'x' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.3ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.1ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') SQL (0.2ms) PRAGMA index_list("users") SQL (0.2ms) PRAGMA index_info('index_users_on_email_and_name') SQL (0.2ms) PRAGMA index_info('index_users_on_age') SQL (0.1ms) PRAGMA index_info('index_users_on_name') SQL (0.1ms) PRAGMA index_info('index_users_on_email') User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'b lah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'blah' AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE ("users"."email" IS NULL AND "users".name IS NULL) LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dude') LIMIT 1 User Load (0.1ms) SELECT "users".id FROM "users" WHERE (LOWER("users"."email") = 'none@none.com' AND "users".name = 'Some dudf') LIMIT 1 User Load (0.2ms) SELECT * FROM "users" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.0ms) DROP TABLE IF EXISTS parents SQL (0.1ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)  SQL (0.1ms) DROP TABLE IF EXISTS children SQL (0.1ms) DROP TABLE IF EXISTS parents SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'VALUE') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (78.4ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(0) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 0) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES('value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 IS NULL AND "examples".scope2 IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "scope1" integer, "attr" varchar(255), "scope2" integer)  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("scope1", "attr", "scope2") VALUES(1, 'value', 2) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 1 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 2) LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value' AND "examples".scope1 = 2 AND "examples".scope2 = 3) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("attr") VALUES(NULL) Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" IS NULL) LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 Example Create (0.1ms) INSERT INTO "examples" ("other", "attr") VALUES(1, 'value') Example Load (0.2ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT "examples".id FROM "examples" WHERE ("examples"."attr" = 'value') LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.2ms) DROP TABLE IF EXISTS examples SQL (0.1ms) DROP TABLE IF EXISTS examples SQL (0.2ms) CREATE TABLE "examples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "other" integer, "attr" varchar(255))  Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 Example Load (0.1ms) SELECT * FROM "examples" LIMIT 1 SQL (0.1ms) DROP TABLE IF EXISTS examples